home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / FORTH Folder / Text files / string.doc < prev   
Encoding:
Text File  |  1984-07-16  |  6.2 KB  |  149 lines  |  [TEXT/ttxt]

  1.  
  2. To all MacForthers:
  3.      Let me begin by paying all due respects to Gregg Harris, the author of C64 Forth for the Commodore 64, from whence these string words came (with a few exceptions).  I have to compliment Gregg on the thought that went into providing a full range of useful string operators and coming up with a simple length checking scheme.  i haven't actually asked Gregg if it's ok to use these, but we know each other, and I doubt anybody is going to try and make their fortune of this string package!
  4.      Now that that's out of the way, on to the documentation.  The thing that makes string happen in MacForth is the word ".  " rather inefficiently takes up dictionary space with the string you specify, and leaves the string's address on the stack.  When the stack notation says '$addr', it usually refers either to the address left by " or that left by the actual name of a string - which brings us to $CONSTANT and $VARIABLE.
  5.  
  6. $CONSTANT -  This is the same as $VARIABLE, except it allows you to predefine the string.  For example, you would usually say:
  7.  
  8. " This is a string."  $CONSTANT MYSTRING
  9.  
  10.      This would create a string called MYSTRING, and set the maximum byte count to the length of the string, in this case 17.
  11.  
  12. NOTE: Once the max byte count is set, the string can NEVER be longer, and all string operations will clip to the max byte count (let's call it max cnt).
  13.  
  14.      Once the string is created, it can be changed just like a string created with $VARIABLE (see below).
  15.  
  16.  
  17. $VARIABLE -  This is used to create a nondefined string entry like so:
  18.  
  19. 10 $VARIABLE MESSAGE
  20.  
  21.      This creates the null string MESSAGE with a max cnt of 10. The biggest max cnt you can have is 255.  When MESSAGE is later executed (or MYSTRING created with $CONSTANT), the address returned is one past the max cnt, which is the current string length byte, followed by the actual string itself, in standard Forth string format.
  22.  
  23.  
  24. $! - This is the string equivalent of ! (store), but it works with two string addresses, transferring the contents (but not the max cnt) of $FROM to $TO (refer to stack notation).
  25.  
  26. Examples:   " Howdy! " MESSAGE $!
  27.             MESSAGE MYSTRING $!
  28.  
  29.      MYSTRING would now be "Howdy! ".  If you see something like this:
  30.  
  31. 7 $VARIABLE SMALL
  32. " This is way too big" SMALL $!
  33. SMALL $.  This is ok
  34.  
  35. remember that SMALL is limited to 10 characters! (Don't go hacking away trying to find out what went wrong!).
  36.  
  37.  
  38. $TOPAD - Used internally, just moves a string to the PAD for processing.
  39.  
  40.  
  41. $+ - This concatenates 2 strings, leaving the result at PAD for further processing or storage.  So the lines
  42.  
  43. 20 $VARIABLE  WHOLESTRING
  44. " Half of " $CONSTANT 1STHALF
  45. " a string" $CONSTANT 2NDHALF
  46. 1STHALF 2NDHALF $+  WHOLESTRING $!
  47.  
  48. would leave WHOLESTRING as "Half of a string".  You could also do
  49.  
  50. 6 $VARIABLE N1
  51. " 123" N1 $!
  52. N1 " 456" $+  N1 $!
  53.  
  54. with N1 being "123456".
  55.  
  56.  
  57. RIGHT$ - Leaves the rightmost n characters of the string at $addr.  If n is greater than the current string length, RIGHT$ just leaves $addr (the whole string).
  58. Example:  N1 3 RIGHT$ $. 456 ok
  59.  
  60.  
  61. LEFT$ - Leaves the leftmost n characters of the string at $addr.  If you use negative n, it will be interpreted as an unsigned integer.
  62.  
  63. Example:  N1 3 LEFT$ $. 123 ok
  64.  
  65.  
  66. $. - This prints the string at $addr.  If the string is null, $. prints nothing.
  67.  
  68. MID$ - Leaves the substring of the string at $addr beginning at startpos and continuing for #chr characters (or until the end of the string is reached).  If startpos is greater than the current string length, the result is a null string.
  69.  
  70. Example:  N1 3 2 MID$ $. 34 ok
  71.  
  72.  
  73. LEN - Simply leaves the current length of the string at $addr on the stack.
  74.  
  75. Example:  N1 LEN .  6  ok
  76.  
  77.  
  78. ASC - Leaves the ASCII value of the first character of the string at $addr on the stack.
  79.  
  80. Example:  HEX  N1 ASC .  31  ok
  81.  
  82.  
  83. NUL$ - I added this as a convenient way to null a string (because you can't create one using ").
  84.  
  85. Example:  MESSAGE NUL$ MESSAGE $.  ok
  86.  
  87.  
  88. CHR$ - Creates a one character string from the (ASCII) value on the stack.
  89.  
  90. Example:  HEX  31 CHR$ $. 1 ok
  91.  
  92.  
  93. $COMPARE - This neat little operator compares two strings and leaves a positive, a negative, or a zero flag, depending on the following conditions:
  94.  
  95. positive flag:  $1 is either longer than $2 or has a greater ASCII value
  96. negative flag:  $1 is either shorter than $2 or has a smaller ASCII value
  97. zero flag:  $1 and $2 are the same
  98.  
  99. Examples:  " 123" $CONSTANT S1
  100.            " 1234" $CONSTANT S2
  101.            " ABC" $CONSTANT S3
  102.  
  103. S1 S2 $COMPARE . -1  ok
  104. S3 S1 $COMPARE .  1  ok
  105. S2 S1 $COMPARE .  1  ok
  106. S2 S3 $COMPARE . -1  ok
  107. S1 S1 $COMPARE .  0  ok
  108.  
  109.  
  110. VAL - Converts the string at $addr to a number on the stack.  If the string is not a valid number, you will get an error.
  111.  
  112. Example:  S1 VAL .  123  ok
  113.  
  114.  
  115. $<  $=  $>  - These compare two strings (using $COMPARE) and leave a boolean flag as a result.
  116.  
  117. Example:  S1 $< S2  IFTRUE ." YUP" IFEND YUP ok
  118.  
  119.  
  120. STR$ - Converts the number on the stack to a string.  If the number is negative, there is a leading minus sign, otherwise there is a leading space.
  121.  
  122. Example:  1001 STR$ $.  1001 ok
  123.          -1001 STR$ $. -1001 ok
  124.  
  125.  
  126. POS$ - Tries to find substring$ within dest$.  If it succeeds, it leaves the position within the string (1 being the first character), otherwise leaves 0.
  127.  
  128. Example:  " songbirds" $CONSTANT BIRDS
  129.           " song" BIRDS POS$ .  1  ok
  130.           " birds" BIRDS POS$ .  5  ok
  131.           " huh?" BIRDS POS$ .  0  ok
  132.  
  133.  
  134. INPUT$ - Since MacForth doesn't have a max cnt byte in its strings, this was necessary (and more convenient) to maintain range-checking.  It allows you to input up to 255 characters, and clips the input string to the max cnt of the string you specify by $addr.
  135.  
  136. Example: 4 $VARIABLE STRING
  137.          STRING INPUT$ This string is way too long to fit - isn't it?
  138.          STRING $. This ok
  139.  
  140. NOTE: If you want to use the range limiting of MacForth's INPUT.STRING (which INPUT$ uses), the string will be stored ok, but MAKE SURE the input limit is less than the max cnt of the destination string!
  141.  
  142. * * * * * * * * * * * * * * * * * * * *
  143.  
  144.      That's all folks!  I hope you find these little babies useful.  Don't hesitate to think up new ones; if you do, make sure you leave string results on the PAD, and that you always clip to max cnt.  Have fun!
  145.  
  146.          Adam Fishman
  147.  
  148.  
  149. Press ENTER to continue: